Autogenerated HTML docs for v1.6.4.1-196-g31f0b 
diff --git a/git-branch.html b/git-branch.html index 9ec9e99..fbc0b9f 100644 --- a/git-branch.html +++ b/git-branch.html 
@@ -658,6 +658,12 @@  </li>   </ul></div>   </div>  +<h2 id="_see_also">SEE ALSO</h2>  +<div class="sectionbody">  +<div class="para"><p><a href="git-check-ref-format.html">git-check-ref-format(1)</a>,  +<a href="git-fetch.html">git-fetch(1)</a>,  +<a href="git-remote.html">git-remote(1)</a>.</p></div>  +</div>   <h2 id="_author">Author</h2>   <div class="sectionbody">   <div class="para"><p>Written by Linus Torvalds &lt;torvalds@osdl.org&gt; and Junio C Hamano &lt;gitster@pobox.com&gt;</p></div>  @@ -672,7 +678,7 @@  </div>   <div id="footer">   <div id="footer-text">  -Last updated 2009-07-01 02:30:43 UTC  +Last updated 2009-08-26 01:35:04 UTC   </div>   </div>   </body>  
diff --git a/git-branch.txt b/git-branch.txt index ae201de..9998887 100644 --- a/git-branch.txt +++ b/git-branch.txt 
@@ -209,6 +209,12 @@  - `--no-merged` is used to find branches which are candidates for merging  into HEAD, since those branches are not fully contained by HEAD.   +SEE ALSO +-------- +linkgit:git-check-ref-format[1], +linkgit:git-fetch[1], +linkgit:git-remote[1]. +  Author  ------  Written by Linus Torvalds <torvalds@osdl.org> and Junio C Hamano <gitster@pobox.com> 
diff --git a/git-log.html b/git-log.html index 7bb03a1..0c75489 100644 --- a/git-log.html +++ b/git-log.html 
@@ -845,11 +845,15 @@  </p>   </dd>   <dt>  ---decorate  +--decorate[=short|full]   </dt>   <dd>   <p>  - Print out the ref names of any commits that are shown.  + Print out the ref names of any commits that are shown. If <em>short</em> is  + specified, the ref name prefixes <em>refs/heads/</em>, <em>refs/tags/</em> and  + <em>refs/remotes/</em> will not be printed. If <em>full</em> is specified, the  + full ref name (including prefix) will be printed. The default option  + is <em>short</em>.   </p>   </dd>   <dt>  @@ -2422,7 +2426,7 @@  </div>   <div id="footer">   <div id="footer-text">  -Last updated 2009-07-16 06:58:58 UTC  +Last updated 2009-08-26 01:35:04 UTC   </div>   </div>   </body>  
diff --git a/git-log.txt b/git-log.txt index 34cf4e5..3d79de1 100644 --- a/git-log.txt +++ b/git-log.txt 
@@ -37,8 +37,12 @@ 	and <until>, see "SPECIFYING REVISIONS" section in 	linkgit:git-rev-parse[1].   ---decorate:: -	Print out the ref names of any commits that are shown. +--decorate[=short|full]:: +	Print out the ref names of any commits that are shown. If 'short' is +	specified, the ref name prefixes 'refs/heads/', 'refs/tags/' and +	'refs/remotes/' will not be printed. If 'full' is specified, the +	full ref name (including prefix) will be printed. The default option +	is 'short'.    --source:: 	Print out the ref name given on the command line by which each 
diff --git a/git-submodule.html b/git-submodule.html index f8eedf0..029cebd 100644 --- a/git-submodule.html +++ b/git-submodule.html 
@@ -327,7 +327,7 @@  <em>git submodule</em> [--quiet] init [--] [&lt;path&gt;&#8230;]   <em>git submodule</em> [--quiet] update [--init] [-N|--no-fetch] [--rebase]   [--reference &lt;repository&gt;] [--merge] [--] [&lt;path&gt;&#8230;]  -<em>git submodule</em> [--quiet] summary [--cached] [--summary-limit &lt;n&gt;] [commit] [--] [&lt;path&gt;&#8230;]  +<em>git submodule</em> [--quiet] summary [--cached|--files] [--summary-limit &lt;n&gt;] [commit] [--] [&lt;path&gt;&#8230;]   <em>git submodule</em> [--quiet] foreach &lt;command&gt;   <em>git submodule</em> [--quiet] sync [--] [&lt;path&gt;&#8230;]</div></div>   </div>  @@ -454,7 +454,11 @@  Show commit summary between the given commit (defaults to HEAD) and   working tree/index. For a submodule in question, a series of commits   in the submodule between the given super project commit and the  - index or working tree (switched by --cached) are shown.  + index or working tree (switched by --cached) are shown. If the option  + --files is given, show the series of commits in the submodule between  + the index of the super project and the working tree of the submodule  + (this option doesn't allow to use the --cached option or to provide an  + explicit commit).   </p>   </dd>   <dt>  @@ -528,6 +532,16 @@  </p>   </dd>   <dt>  +--files  +</dt>  +<dd>  +<p>  + This option is only valid for the summary command. This command  + compares the commit in the index with that in the submodule HEAD  + when this option is used.  +</p>  +</dd>  +<dt>   -n   </dt>   <dt>  @@ -625,7 +639,7 @@  </div>   <div id="footer">   <div id="footer-text">  -Last updated 2009-08-05 21:21:15 UTC  +Last updated 2009-08-26 01:35:05 UTC   </div>   </div>   </body>  
diff --git a/git-submodule.txt b/git-submodule.txt index 7dd73ae..bb7d159 100644 --- a/git-submodule.txt +++ b/git-submodule.txt 
@@ -15,7 +15,7 @@  'git submodule' [--quiet] init [--] [<path>...]  'git submodule' [--quiet] update [--init] [-N|--no-fetch] [--rebase]  [--reference <repository>] [--merge] [--] [<path>...] -'git submodule' [--quiet] summary [--cached] [--summary-limit <n>] [commit] [--] [<path>...] +'git submodule' [--quiet] summary [--cached|--files] [--summary-limit <n>] [commit] [--] [<path>...]  'git submodule' [--quiet] foreach <command>  'git submodule' [--quiet] sync [--] [<path>...]   @@ -127,7 +127,11 @@ 	Show commit summary between the given commit (defaults to HEAD) and 	working tree/index. For a submodule in question, a series of commits 	in the submodule between the given super project commit and the -	index or working tree (switched by --cached) are shown. +	index or working tree (switched by --cached) are shown. If the option +	--files is given, show the series of commits in the submodule between +	the index of the super project and the working tree of the submodule +	(this option doesn't allow to use the --cached option or to provide an +	explicit commit).    foreach:: 	Evaluates an arbitrary shell command in each checked out submodule. @@ -169,6 +173,11 @@ 	commands typically use the commit found in the submodule HEAD, but 	with this option, the commit stored in the index is used instead.   +--files:: +	This option is only valid for the summary command. This command +	compares the commit in the index with that in the submodule HEAD +	when this option is used. +  -n::  --summary-limit:: 	This option is only valid for the summary command. 
diff --git a/git-tag.html b/git-tag.html index 8eb007d..a5b0428 100644 --- a/git-tag.html +++ b/git-tag.html 
@@ -322,16 +322,14 @@  <div class="sectionbody">   <div class="verseblock">   <div class="content"><em>git tag</em> [-a | -s | -u &lt;key-id&gt;] [-f] [-m &lt;msg&gt; | -F &lt;file&gt;]  - &lt;name&gt; [&lt;commit&gt; | &lt;object&gt;]  -<em>git tag</em> -d &lt;name&gt;&#8230;  + &lt;tagname&gt; [&lt;commit&gt; | &lt;object&gt;]  +<em>git tag</em> -d &lt;tagname&gt;&#8230;   <em>git tag</em> [-n[&lt;num&gt;]] -l [--contains &lt;commit&gt;] [&lt;pattern&gt;]  -<em>git tag</em> -v &lt;name&gt;&#8230;</div></div>  +<em>git tag</em> -v &lt;tagname&gt;&#8230;</div></div>   </div>   <h2 id="_description">DESCRIPTION</h2>   <div class="sectionbody">  -<div class="para"><p>Adds a <em>tag</em> reference in <tt>.git/refs/tags/</tt>. The tag &lt;name&gt; must pass  -<a href="git-check-ref-format.html">git-check-ref-format(1)</a> which basicly means that control characters,  -space, ~, ^, :, ?, *, [ and \ are prohibited.</p></div>  +<div class="para"><p>Adds a tag reference in <tt>.git/refs/tags/</tt>.</p></div>   <div class="para"><p>Unless <tt>-f</tt> is given, the tag must not yet exist in   <tt>.git/refs/tags/</tt> directory.</p></div>   <div class="para"><p>If one of <tt>-a</tt>, <tt>-s</tt>, or <tt>-u &lt;key-id&gt;</tt> is passed, the command  @@ -450,6 +448,17 @@  is given.   </p>   </dd>  +<dt>  +&lt;tagname&gt;  +</dt>  +<dd>  +<p>  + The name of the tag to create, delete, or describe.  + The new tag name must pass all checks defined by  + <a href="git-check-ref-format.html">git-check-ref-format(1)</a>. Some of these checks  + may restrict the characters allowed in a tag name.  +</p>  +</dd>   </dl></div>   </div>   <h2 id="_configuration">CONFIGURATION</h2>  @@ -597,6 +606,10 @@  <pre><tt>$ GIT_COMMITTER_DATE="2006-10-02 10:31" git tag -s v1.0.1</tt></pre>   </div></div>   </div>  +<h2 id="_see_also">SEE ALSO</h2>  +<div class="sectionbody">  +<div class="para"><p><a href="git-check-ref-format.html">git-check-ref-format(1)</a>.</p></div>  +</div>   <h2 id="_author">Author</h2>   <div class="sectionbody">   <div class="para"><p>Written by Linus Torvalds &lt;torvalds@osdl.org&gt;,  @@ -612,7 +625,7 @@  </div>   <div id="footer">   <div id="footer-text">  -Last updated 2009-08-07 05:39:46 UTC  +Last updated 2009-08-26 01:35:05 UTC   </div>   </div>   </body>  
diff --git a/git-tag.txt b/git-tag.txt index 1118ce2..5113eae 100644 --- a/git-tag.txt +++ b/git-tag.txt 
@@ -10,17 +10,15 @@  --------  [verse]  'git tag' [-a | -s | -u <key-id>] [-f] [-m <msg> | -F <file>] -	<name> [<commit> | <object>] -'git tag' -d <name>... +	<tagname> [<commit> | <object>] +'git tag' -d <tagname>...  'git tag' [-n[<num>]] -l [--contains <commit>] [<pattern>] -'git tag' -v <name>... +'git tag' -v <tagname>...    DESCRIPTION  -----------   -Adds a 'tag' reference in `.git/refs/tags/`. The tag <name> must pass -linkgit:git-check-ref-format[1] which basicly means that control characters, -space, ~, ^, :, ?, *, [ and \ are prohibited. +Adds a tag reference in `.git/refs/tags/`.    Unless `-f` is given, the tag must not yet exist in  `.git/refs/tags/` directory. @@ -88,6 +86,12 @@ 	Implies `-a` if none of `-a`, `-s`, or `-u <key-id>` 	is given.   +<tagname>:: +	The name of the tag to create, delete, or describe. +	The new tag name must pass all checks defined by +	linkgit:git-check-ref-format[1]. Some of these checks +	may restrict the characters allowed in a tag name. +  CONFIGURATION  -------------  By default, 'git-tag' in sign-with-default mode (-s) will use your @@ -252,6 +256,10 @@  ------------     +SEE ALSO +-------- +linkgit:git-check-ref-format[1]. +  Author  ------  Written by Linus Torvalds <torvalds@osdl.org>,